home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 8 / QRZ Ham Radio Callsign Database - Volume 8.iso / pc / files / t_unix / bs941029.tgz / bbsx-941029.tar / bbsx / bbs.hd < prev    next >
Text File  |  1994-10-29  |  2KB  |  64 lines

  1. #ifndef BBS_HD
  2. #define BBS_HD
  3.  
  4. #include <stdio.h>
  5. #include "bbs.h"
  6.  
  7. char Myhostname[16];
  8. char myhostname[16];
  9. char prompt[1024] = "bbsx> ";
  10. const char daynames[] = "SunMonTueWedThuFriSat";
  11. const char monthnames[] = "JanFebMarAprMayJunJulAugSepOctNovDec";
  12. int debug = 0;
  13. int doforward;
  14. int errors;
  15. int fdindex;
  16. int fdlock = -1;
  17. int fdlog;
  18. int fdseq;
  19. int level;
  20. int mode = BBS;
  21. int packetcluster;
  22. struct revision revision;
  23. struct user user;
  24. volatile int stopped;
  25. struct passwd *bbs_adm;
  26. int  is_bbs_adm;
  27. int  is_tell_user;
  28. char compressext[5] = ".Z";
  29. char compress[20] = "compress";
  30. char uncompressoption[10] = "-d";
  31. char compressoption[10] = "";
  32. char bbsadm[16] = "bbsadm";
  33. char telluser[16] = "tell";
  34. char mydomain[32] = "DEU.EU";
  35. char station[80] = "[WAMPES TEST-BBS XXXXXXXXXXXXXXXXXXXXXXXXXXXXX]";
  36. int crcbit[] = {
  37.   0x9188,0x48c4,0x2462,0x1231,0x8108,0x4084,0x2042,0x1021
  38.                 };
  39. int bittab[] = { 128,64,32,16,8,4,2,1 };
  40. int crctab[256];
  41. char binary_allowed = 0;
  42. char subject_in_send = 0;
  43. struct aliastable *alias_table;
  44. enum interface_type interface_type  = wampes;
  45. char last_board[LEN_TO+1] = "";
  46. char escape_char;
  47. char orig_escape;
  48. int lowest_on_start = 0;
  49. int highest_on_start = 0;
  50. char editor[256];
  51. int log_reading = 0;
  52. int dir_column;
  53. int max_list = 10000;
  54. int fix_allowed = 1;
  55. char debugfile[255] = DEBUGFILE;
  56. char helpfile[255] = HELPFILE;
  57. char infofile[255] = INFOFILE;
  58. char masterrcfile[255] = MASTERRCFILE;
  59. char mailfile[255] = MAILFILE;
  60. char boxpassword[20];
  61. int password_ok = 1;
  62.  
  63. #endif /* of BBS_HD */
  64.